home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BorderStyle = 3 'Fixed Double
- Caption = "SECRITY EXAMPLE"
- ClientHeight = 3180
- ClientLeft = 60
- ClientTop = 1485
- ClientWidth = 9510
- ControlBox = 0 'False
- Height = 3585
- Left = 0
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3180
- ScaleWidth = 9510
- Top = 1140
- Width = 9630
- Begin CommandButton Command1
- Caption = "RUN EXAMPLE"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Futura Md BT"
- FontSize = 75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 2175
- Left = 120
- TabIndex = 0
- Top = 720
- Width = 9255
- End
- Sub Command1_Click ()
- Randomize Timer
- A# = Int((10 - 1 + 1) * Rnd + 1)
- Select Case A#
-
- Case Is = 1
- FORM2.Text2.Text = "TRIVIA"
- FORM2.Text3.Text = "AA1"
- Case Is = 2
- FORM2.Text2.Text = "MILLER"
- FORM2.Text3.Text = "AA2"
- Case Is = 3
- FORM2.Text2.Text = "DODO"
- FORM2.Text3.Text = "AA3"
- Case Is = 4
- FORM2.Text2.Text = "COMPUTER"
- FORM2.Text3.Text = "AA4"
- Case Is = 5
- FORM2.Text2.Text = "BILL"
- FORM2.Text3.Text = "AA5"
- Case Is = 6
- FORM2.Text2.Text = "WILLIAM"
- FORM2.Text3.Text = "AA6"
-
- Case Is = 7
- FORM2.Text2.Text = "386"
- FORM2.Text3.Text = "AA7"
- Case Is = 8
- FORM2.Text2.Text = "SUPER"
- FORM2.Text3.Text = "AA8"
- Case Is = 9
- FORM2.Text2.Text = "WORLD PEACE"
- FORM2.Text3.Text = "AA9"
-
- Case Is = 10
- FORM2.Text2.Text = "SPACE"
- FORM2.Text3.Text = "A10"
- End Select
- FORM2.Show
- FORM1.Hide
- End Sub
-